home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Online / Apache / htdocs / counter / crdates.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1997-11-23  |  551b  |  41 lines

  1. #!/bin/sh
  2. #
  3. # create the date images used in the Count.html
  4. # ma_muquit@fccc.edu
  5. # Oct-19-1997
  6. #
  7. P="../src/Count.cgi"
  8. PA="$P -debug"
  9.  
  10. if [ ! -f $P ]; then
  11.     echo
  12.     echo "$P does not exist"
  13.     echo
  14. fi
  15.  
  16. ATTR="ft=2&dd=D&srgb=00ff00&prgb=00ffff"
  17.  
  18. #
  19. # func to set QUERY_STRING
  20. setQueryString ()
  21. {
  22.     QUERY_STRING="lit=$1&$ATTR"
  23.     export QUERY_STRING
  24. }
  25.  
  26.  
  27. crGifs ()
  28. {
  29.     setQueryString "$1"
  30.     $PA
  31. }
  32.  
  33. if [ $# -lt 2 ]; then
  34.     echo
  35.     echo "usage: `basename $0` <date-string> <output gif file>"
  36.     echo
  37.     exit 0
  38. fi
  39.  
  40. crGifs $1 > $2  2>/dev/null
  41.